noVnc 安装 发表于 2019-11-04 | 更新于 2020-01-09 | 分类于 linux noVnc 安装 noVnc 安装1234567891011121314151617181920212223242526#!/bin/bash# stop selinux and iptablessetenforce 0systemctl stop firewalldsystemctl disable firewalld# install vncserver and gityum install -y epel*yum install tigervnc-server git -yvncserver :1# 此时会提示输入密码# download noVNCgit clone git://github.com/kanaka/noVNC# create secure connectioncd ./noVNC/utils/openssl req -new -x509 -days 365 -nodes -out self.pem -keyout self.pem# run noVNCcd .././utils/launch.sh --vnc localhost:5901# running